home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / utility / gs25dos1.zip / README.DOC < prev    next >
Text File  |  1992-08-01  |  5KB  |  148 lines

  1.    Copyright (C) 1990, 1992 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.
  19.  
  20. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21.  
  22. This file, readme.doc, describes problems and new features in the
  23. current release of Ghostscript.  This file describes version 2.5 of
  24. Ghostscript.
  25.  
  26. For an overview of Ghostscript and a list of the documentation files, see
  27. README.
  28.  
  29. New features
  30. ============
  31.  
  32. Note: this is not a complete list of new features.  See the most recent
  33. section of NEWS for full details.
  34.  
  35. Rotated halftone screens work now.
  36.  
  37. Fontmap can include font aliases, so that one font can be used in
  38. place of another.
  39.  
  40. Ghostscript now properly interprets the "hints" in Type 1 outline
  41. fonts.  Because of this, the Courier, Charter, and Utopia fonts
  42. supplied with Ghostscript, and most commercial Type 1 fonts, produce
  43. better output at small sizes.
  44.  
  45. On MS-DOS platforms, the TEMP environment variable can be used to
  46. designate the directory for Ghostscript's temporary files.
  47.  
  48. Ghostscript's halftoning algorithms have changed.  Both color and
  49. gray-scale may look slightly different than in previous versions.
  50.  
  51. The Distillery works with Ghostscript now.
  52.  
  53. The default search path for Ghostscript on Unix systems has been
  54. changed.  See the definition of GS_LIB_DEFAULT in your makefile.
  55.  
  56. You can make A4 paper the default for the DeskJet and LaserJet
  57. printers (currently, only for black-and-white printers).  See
  58. devs.mak.
  59.  
  60. Ghostscript now can be built to run under Microsoft Windows.
  61.  
  62. You can use @filename to get around DOS' 128-character limit on the
  63. length of a command line.  See use.doc.
  64.  
  65. Known problems
  66. ==============
  67.  
  68. Interpreter
  69. -----------
  70.  
  71. The interactive interpreter requires that every statement fit on a line,
  72. i.e., you can't have an unpaired ( or {.
  73.  
  74. On a MS-DOS system, interrupting Ghostscript by typing ^C doesn't restore
  75. the display mode.
  76.  
  77. Operators
  78. ---------
  79.  
  80. The Ghostscript language does not include the following operators of the
  81. PostScript language:
  82.  
  83.     resetfile
  84.     banddevice, renderbands
  85.  
  86. The following are not implemented completely:
  87.  
  88.     %statementedit (file name): interpreted as equivalent to
  89. %lineedit.
  90.  
  91. Most of the new color operators, particularly those that support the CMYK
  92. color model, are implemented as Ghostscript language procedures, and they
  93. essentially emulate CMYK using RGB.
  94.  
  95. The following operators that expect arrays won't accept packed arrays:
  96.     definefont (Subrs (type 1 fonts))
  97.     setdash (dash pattern)
  98.     setcachedevice (bounding box)
  99.     makeimagedevice (palette)
  100.  
  101. The file operator only recognizes modes r and w, not the newer modes r+,
  102. w+, a, and a+.
  103.  
  104. Limitations
  105. -----------
  106.  
  107. Floating point exceptions terminate Ghostscript, rather than producing a
  108. rangecheck error.
  109.  
  110. Some access checks aren't implemented.
  111.  
  112. copypage does nothing in the MS-DOS implementation, and merely
  113. synchronizes the X connection in the Unix implementation.  showpage is a
  114. procedure that does a copypage and then beeps the bell and waits for the
  115. user to hit a key. (copypage does do the right thing for printers.)
  116.  
  117. Graphics bugs
  118. -------------
  119.  
  120. strokepath produces incorrect output for dashed lines.
  121.  
  122. The implementation only looks at the PaintType of the font when doing
  123. show, not when doing charpath.  Because of this, stroked fonts don't work
  124. correctly with charpath.
  125.  
  126. arcto gives an error for negative radii.
  127.  
  128. Changing the contents of the Encoding array or the Metrics dictionary of a
  129. font dynamically doesn't produce the expected result (may have no effect)
  130. if character caching is enabled.
  131.  
  132. Halftone patterns "flip over" at the 50% coverage point, producing
  133. anomalous visual effects on some color devices.
  134.  
  135. We have not been able to test 2-, 4-, and 16-bit memory devices as
  136. thoroughly as 1-, 8-, 24-, and 32-bit devices; please report any
  137. problems.
  138.  
  139. Opening more than one window device at the same time doesn't work.
  140. This is the case for both X Windows and Microsoft Windows.
  141.  
  142. Non-graphics bugs
  143. -----------------
  144.  
  145. restore doesn't properly undo currentgstate.
  146.  
  147. copy doesn't handle gstates.
  148.